home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
s_saver
/
pal.frm
< prev
next >
Wrap
Text File
|
1995-09-06
|
971b
|
41 lines
VERSION 2.00
Begin Form Palette
BackColor = &H00000000&
ClientHeight = 4020
ClientLeft = 1095
ClientTop = 1485
ClientWidth = 7365
ControlBox = 0 'False
Height = 4425
Left = 1035
LinkMode = 1 'Source
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4020
ScaleWidth = 7365
Top = 1140
Width = 7485
End
DefInt A-Z
Sub Form_Load ()
WindowState = 2
End Sub
Sub Form_Paint ()
ScaleMode = 3 ' Set scale to pixels.
While Visible = True
Randomize
CX = Int((ScaleWidth + 1) * Rnd)
CY = Int((ScaleHeight + 1) * Rnd)
nBars = Int(51 * Rnd)
For Radius% = 0 To nBars ' Set radius.
Circle (CX, CY), Radius%, RGB(Rnd * 255, Rnd * 255, Rnd * 255)
Ok = DoEvents()
Next Radius%
Wend
End Sub